home *** CD-ROM | disk | FTP | other *** search
/ Die Ultimative Software-P…i Collection 1996 & 1997 / Die Ultimative Software-Pakete CD-ROM fur Atari Collection 1996 & 1997.iso / g / gnu_c / pmlsrc23.zoo / pmlsrc / Makefile.minix < prev    next >
Encoding:
Makefile  |  1994-03-19  |  445 b   |  25 lines

  1. CROSSDIR = /dsrg/bammi/cross-minix
  2. CROSSLIB = $(CROSSDIR)/lib
  3. CROSSBIN = $(CROSSDIR)/bin
  4. CROSSINC = $(CROSSDIR)/include
  5.  
  6. ALL = libpml.a libpml32.a
  7.  
  8. all : $(ALL)
  9.  
  10. libpml.a :
  11.     make -f Makefile.16 clean
  12.     make -f Makefile.16 libpml.a
  13.  
  14. libpml32.a :
  15.     make -f Makefile.32 clean
  16.     make -f Makefile.32 libpml32.a
  17.  
  18. install : $(ALL)
  19.     cp libpml.a libpml32.a $(CROSSLIB)
  20.     cp pmluser.h $(CROSSINC)
  21.  
  22. clean:
  23.     make -f Makefile.16 clean
  24.     make -f Makefile.32 clean
  25.